home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / net / RCS / rexec.c,v < prev    next >
Text File  |  1988-07-29  |  3KB  |  171 lines

  1. head     1.2;
  2. access   ;
  3. symbols  ;
  4. locks    ; strict;
  5. comment  @ * @;
  6.  
  7.  
  8. 1.2
  9. date     88.07.29.17.00.05;  author ouster;  state Exp;
  10. branches ;
  11. next     1.1;
  12.  
  13. 1.1
  14. date     88.06.20.09.57.22;  author ouster;  state Exp;
  15. branches ;
  16. next     ;
  17.  
  18.  
  19. desc
  20. @@
  21.  
  22.  
  23. 1.2
  24. log
  25. @Lint.
  26. @
  27. text
  28. @/*
  29.  * Copyright (c) 1980 Regents of the University of California.
  30.  * All rights reserved.
  31.  *
  32.  * Redistribution and use in source and binary forms are permitted
  33.  * provided that this notice is preserved and that due credit is given
  34.  * to the University of California at Berkeley. The name of the University
  35.  * may not be used to endorse or promote products derived from this
  36.  * software without specific prior written permission. This software
  37.  * is provided ``as is'' without express or implied warranty.
  38.  */
  39.  
  40. #if defined(LIBC_SCCS) && !defined(lint)
  41. static char sccsid[] = "@@(#)rexec.c    5.4 (Berkeley) 3/7/88";
  42. #endif /* LIBC_SCCS and not lint */
  43.  
  44. #include <sys/types.h>
  45. #include <sys/socket.h>
  46.  
  47. #include <netinet/in.h>
  48.  
  49. #include <stdio.h>
  50. #include <netdb.h>
  51. #include <errno.h>
  52.  
  53. extern    errno;
  54. char    *index();
  55. int    rexecoptions;
  56. char    *getpass(), *getlogin();
  57.  
  58. rexec(ahost, rport, name, pass, cmd, fd2p)
  59.     char **ahost;
  60.     int rport;
  61.     char *name, *pass, *cmd;
  62.     int *fd2p;
  63. {
  64.     int s, timo = 1, s3;
  65.     struct sockaddr_in sin, sin2, from;
  66.     char c;
  67.     short port;
  68.     struct hostent *hp;
  69.  
  70.     hp = gethostbyname(*ahost);
  71.     if (hp == 0) {
  72.         fprintf(stderr, "%s: unknown host\n", *ahost);
  73.         return (-1);
  74.     }
  75.     *ahost = hp->h_name;
  76.     ruserpass(hp->h_name, &name, &pass);
  77. retry:
  78.     s = socket(AF_INET, SOCK_STREAM, 0);
  79.     if (s < 0) {
  80.         perror("rexec: socket");
  81.         return (-1);
  82.     }
  83.     sin.sin_family = hp->h_addrtype;
  84.     sin.sin_port = rport;
  85.     bcopy(hp->h_addr, (caddr_t)&sin.sin_addr, hp->h_length);
  86.     if (connect(s, (struct sockaddr *) &sin, sizeof(sin)) < 0) {
  87.         if (errno == ECONNREFUSED && timo <= 16) {
  88.             (void) close(s);
  89.             sleep(timo);
  90.             timo *= 2;
  91.             goto retry;
  92.         }
  93.         perror(hp->h_name);
  94.         return (-1);
  95.     }
  96.     if (fd2p == 0) {
  97.         (void) write(s, "", 1);
  98.         port = 0;
  99.     } else {
  100.         char num[8];
  101.         int s2, sin2len;
  102.         
  103.         s2 = socket(AF_INET, SOCK_STREAM, 0);
  104.         if (s2 < 0) {
  105.             (void) close(s);
  106.             return (-1);
  107.         }
  108.         listen(s2, 1);
  109.         sin2len = sizeof (sin2);
  110.         if (getsockname(s2, (struct sockaddr *)&sin2, &sin2len) < 0 ||
  111.           sin2len != sizeof (sin2)) {
  112.             perror("getsockname");
  113.             (void) close(s2);
  114.             goto bad;
  115.         }
  116.         port = ntohs((u_short)sin2.sin_port);
  117.         (void) sprintf(num, "%d", port);
  118.         (void) write(s, num, strlen(num)+1);
  119.         { int len = sizeof (from);
  120.           s3 = accept(s2, &from, &len);
  121.           close(s2);
  122.           if (s3 < 0) {
  123.             perror("accept");
  124.             port = 0;
  125.             goto bad;
  126.           }
  127.         }
  128.         *fd2p = s3;
  129.     }
  130.     (void) write(s, name, strlen(name) + 1);
  131.     /* should public key encypt the password here */
  132.     (void) write(s, pass, strlen(pass) + 1);
  133.     (void) write(s, cmd, strlen(cmd) + 1);
  134.     if (read(s, &c, 1) != 1) {
  135.         perror(*ahost);
  136.         goto bad;
  137.     }
  138.     if (c != 0) {
  139.         while (read(s, &c, 1) == 1) {
  140.             (void) write(2, &c, 1);
  141.             if (c == '\n')
  142.                 break;
  143.         }
  144.         goto bad;
  145.     }
  146.     return (s);
  147. bad:
  148.     if (port)
  149.         (void) close(*fd2p);
  150.     (void) close(s);
  151.     return (-1);
  152. }
  153. @
  154.  
  155.  
  156. 1.1
  157. log
  158. @Initial revision
  159. @
  160. text
  161. @d59 1
  162. a59 1
  163.     if (connect(s, &sin, sizeof(sin)) < 0) {
  164. d83 1
  165. a83 1
  166.         if (getsockname(s2, (char *)&sin2, &sin2len) < 0 ||
  167. d93 1
  168. a93 1
  169.           s3 = accept(s2, &from, &len, 0);
  170. @
  171.